home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / getcac1a / form1.frm next >
Text File  |  1999-09-11  |  2KB  |  62 lines

  1. VERSION 5.00
  2. Begin VB.Form Form1 
  3.    Caption         =   "Form1"
  4.    ClientHeight    =   3735
  5.    ClientLeft      =   60
  6.    ClientTop       =   345
  7.    ClientWidth     =   7635
  8.    LinkTopic       =   "Form1"
  9.    ScaleHeight     =   3735
  10.    ScaleWidth      =   7635
  11.    StartUpPosition =   3  'Windows Default
  12.    Begin VB.ListBox List1 
  13.       Height          =   2790
  14.       Left            =   120
  15.       TabIndex        =   1
  16.       Top             =   720
  17.       Width           =   7350
  18.    End
  19.    Begin VB.CommandButton Command1 
  20.       Caption         =   "GET CACHED PASSWORDS"
  21.       Height          =   405
  22.       Left            =   120
  23.       TabIndex        =   0
  24.       Top             =   120
  25.       Width           =   7350
  26.    End
  27.    Begin VB.Label Label1 
  28.       Caption         =   "Copyright 1999 by Black Flash from the BeeYefCorp ------- http://BeeYefCorp.cjb.net "
  29.       BeginProperty Font 
  30.          Name            =   "MS Sans Serif"
  31.          Size            =   9.75
  32.          Charset         =   0
  33.          Weight          =   400
  34.          Underline       =   0   'False
  35.          Italic          =   0   'False
  36.          Strikethrough   =   0   'False
  37.       EndProperty
  38.       Height          =   315
  39.       Left            =   120
  40.       TabIndex        =   2
  41.       Top             =   3495
  42.       Width           =   7350
  43.    End
  44. End
  45. Attribute VB_Name = "Form1"
  46. Attribute VB_GlobalNameSpace = False
  47. Attribute VB_Creatable = False
  48. Attribute VB_PredeclaredId = True
  49. Attribute VB_Exposed = False
  50. '**********************
  51. '*get cached passwords*
  52. '*        by          *
  53. '*    Black Flash     *
  54. '*       from         *
  55. '*    BeeYefCorp      *
  56. '*        at          *
  57. '* BeeYefCorp.cjb.net *
  58. '**********************
  59. Private Sub Command1_Click()
  60. Call GetPasswords
  61. End Sub
  62.